<table>


List of tags

 
Summary:
Used together with the <tr> and <td> tags to create sets of aligned columns of text and images in a card. The table tags determine the structure of the columns. The tags separate content into columns, but do not specify column or intercolumn widths.

The number of columns for the row set must be specified by the columns attribute. If the actual number of columns in a row is less than the value specified by the columns attribute, the row will be effectively padded with empty columns. The orientation of the table depends on the language. For left-to-right languages, the leftmost column is the first column in the table. Columns are added to the right side of a row to pad left-to-right tables. Columns are added to the left side of a row to pad right-to-left table.

If the actual number of columns in a row is greater than the value specified by the columns attribute, the extra columns of the row will be aggregated into the last column, such that the row contains exactly the number of columns specified. A single inter-word space will be inserted between two cells that are being aggregated.

The table will be rendered as narrow as possible given the contents. A non-zero width gutter is used to separate each non-empty column.

Attributes:

Name

Data type

Mandatory

Default

Description

id

String

X

 

A unique name for the tag within the deck

class

String

X

 

A name of a class of which the tag is a member

xml:lang

String

X

 

The natural or formal language of the tag or its attributes

title

String

X

 

Specifies a brief text string identifying the table

align

String

X

left 

Specifies the layout of text and images (within the columns) as a list of alignment designations - one for each column. Centre alignment is specified with C, left alignment with L, and right alignment with R. If an alignment designation is omitted, the default alignment is applied

columns

NUMBER

 

 

Specifies the number of columns in the table. Must not be zero

Nested tags:
<tr>